home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestTimeStamp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  486 b   |  30 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestTimeStamp.h
  3.  
  4.     Contains:    Declaration for TTestTimeStamp class
  5.  
  6.     Copyright:    © 1991-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTTIMESTAMP__
  11. #define __TESTTIMESTAMP__
  12.  
  13. #ifndef __TESTCLASS__
  14. #include "TestClass.h"
  15. #endif
  16. #ifndef __LIBRARYMANAGERCLASSES__
  17. #include <LibraryManagerClasses.h>
  18. #endif
  19.  
  20. #define kTTestTimeStampID    kTestToolPrefix "TTestTimeStamp,1.2"
  21.  
  22. class TTestTimeStamp : public TTestTool
  23. {
  24.     BodyTest(TimeStamp, TimeStamp);
  25. };
  26.  
  27. #endif
  28.  
  29.  
  30.